home *** CD-ROM | disk | FTP | other *** search
- /*
- Name : browsecd.rexx
- Created : 24/06/96
- Last change : 24/06/96
-
- Programmer : Urban Lindeskog
- Organization : ProNotion SWDG
-
-
- Plays the first 15 seconds of all tracks on a CD.
- */
- OPTIONS RESULTS
- ADDRESS REXXCD
-
- if ~show('l','rexxsupport.library') then do
- addlib('rexxsupport.library',0,-30,0)
- end
-
-
- GETATTR TRACK STEM TRACK
- do i=1 to TRACK.COUNT
- 'GETATTR TRACK NAME 'i' STEM TRACK'
- say TRACK.ARTIST' : 'TRACK.TITLE
-
- PLAY i
-
- do d=0 to 15
- call Delay(50)
- say RIGHT('',d, '=')RIGHT('', 15, '08'X)
- end
- end
-
- STOP
-